home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / i-mall_cgi.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  59 lines

  1. #
  2. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. #
  4. #  Ref: ZetaLabs, Zone-H Laboratories
  5. #
  6. #  This script is released under the GNU GPL v2
  7. #
  8.  
  9. if(description)
  10. {
  11.  script_id(15750);
  12.  script_bugtraq_id(10626);
  13.  if ( defined_func("script_xref") ) script_xref(name:"OSVDB", value:"7461");
  14.  
  15.  script_version ("$Revision: 1.2 $");
  16.  name["english"] = "i-mall.cgi";
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. The script i-mall.cgi is installed. Some versions is vulnerable to
  21. remote command exacution flaw, due to insuficient user input sanitization.
  22.  
  23. A malicious user can pass arbitrary shell commands on the remote server threw
  24. this script.
  25.  
  26. *** Warning : Nessus solely relied on the presence of this CGI, it did not
  27. *** determine if you specific version is vulnerable to that problem
  28.  
  29. Solution : None at this time.
  30. Risk factor : High";
  31.  
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "Checks for the presence of i-mall.cgi";
  35.  summary["francais"] = "VΘrifie la prΘsence de i-mall.cgi";
  36.  
  37.  script_summary(english:summary["english"], francais:summary["francais"]);
  38.  
  39.  script_category(ACT_GATHER_INFO);
  40.  
  41.  
  42.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  43.  family["english"] = "CGI abuses";
  44.  script_family(english:family["english"]);
  45.  script_dependencie("http_version.nasl");
  46.  script_require_ports("Services/www", 80);
  47.  exit(0);
  48. }
  49.  
  50. # The script code starts here
  51. include("http_func.inc");
  52. include("http_keepalive.inc");
  53. port = get_http_port(default:80);
  54.  
  55. req = http_get(item:"/i-mall/i-mall.cgi?p=|id|", port:port);
  56. res = http_keepalive_send_recv(port:port, data:req);
  57. if ( res == NULL ) exit(0);
  58. if ( egrep(pattern:"uid=[0-9].* gid=[0-9]*", string:res) ) security_hole(port);
  59.